home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / Install / program files / Borland / BDS / 3.0 / Objrepos / CSharp / Page.aspx.cs < prev    next >
Encoding:
INI File  |  2004-10-22  |  1.0 KB  |  47 lines

  1. [!outputon]
  2. using System;
  3. using System.Collections;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.Web;
  8. using System.Web.SessionState;
  9. using System.Web.UI;
  10. using System.Web.UI.WebControls;
  11. using System.Web.UI.HtmlControls;
  12.  
  13. namespace [!Namespace]
  14. {
  15.     /// <summary>
  16.     /// Summary description for [!ClassName].
  17.     /// </summary>
  18.     public class [!ClassName] : System.Web.UI.Page
  19.     {
  20.         private void Page_Load(object sender, System.EventArgs e)
  21.         {
  22.             // Put user code to initialize the page here
  23.         }
  24.  
  25.         #region Web Form Designer generated code
  26.         override protected void OnInit(EventArgs e)
  27.         {
  28.             //
  29.             // CODEGEN: This call is required by the ASP.NET Web Form Designer.
  30.             //
  31.             InitializeComponent();
  32.             base.OnInit(e);
  33.         }
  34.         
  35.         /// <summary>
  36.         /// Required method for Designer support - do not modify
  37.         /// the contents of this method with the code editor.
  38.         /// </summary>
  39.         private void InitializeComponent()
  40.         {    
  41.             this.Load += new System.EventHandler(this.Page_Load);
  42.         }
  43.         #endregion
  44.     }
  45. }
  46.  
  47.